home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 July
/
Chip_1999-07_cd.bin
/
zkuste
/
MacOS
/
Data
/
Files
/
sms.sit
/
Smart Scroll 3.5
/
for Developers
/
SmartScrollAPI.p
< prev
Wrap
Text File
|
1997-11-25
|
746b
|
30 lines
unit SmartScrollAPI;
{
File: SmartScrollAPI.p
Contains: Smart Scroll Application Programming Interface
Version: 1.2
Copyright: ⌐ 1996 by Marc Moini, portions by Marc Menschenfreund,
Alessandro Levi Montalcini and Mark Shirley (Thanks!)
All rights reserved.
Bugs?: If you find a problem with this file, please email Marc@Kagi.com
Converted to Pascal by Peter N Lewis <peter@stairways.com.au>
}
interface
uses
Types, Controls;
procedure SetSmartScrollInfo( theScrollBar: ControlRef; amountVisible, amountTotal: longint );
procedure SetSmartScrollProp( theScrollBar: ControlRef; proportion: Fract );
function GetSmartScrollProp( theScrollBar: ControlRef ): Fract;
procedure DisposeAllSmartScrolls;
end.